Centered pop up window.....color?

Hey, I’m new to the forums, I greatly value the kirupa tutorials!

Anyways, I searched the forums and didn’;t find this…

I made centered pop up windows for my graphic design site, and the Kirupa tutorial I followed worked like a charm, however, I was wondering if there is a way to add background color to the string of options?

on (release) {
//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = “http://www.whatever.com/images/whatever.jpg”;
target_winName = “Whatever”;
width = 650;
height = 289;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 0;
resizable = 0;
//sends data back to the function
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}

i don’t think there’s a way. really, the options affect the window itself, not the content within it (except of course for address). i think you’d have to do it in the html.

Yeah I just went ahead and altered the html page colors… thanks!