CFWINDOW
I have a page set up using a stylesheet and it looks just right. When I introduce a CFWINDOW, the style on my page starts to fall apart.
I am calling my window with this code ---->
<img src="imagesLayout/Email_01.png" onclick="javascript:ColdFusion.Window.show('SendToFriendWindow')" />
My window code ----->
<cfwindow
name="SendToFriendWindow"
modal="false"
center="true"
draggable="false"
closable="true"
initshow="false"
height="400"
width="600"
source="SendToFriend.cfm?requestedContent=#requestedContent#"></cfwindow>
